home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gwuada_5.zip / adaed / spider / draw9.ada < prev    next >
Text File  |  1993-02-04  |  218b  |  17 lines

  1. WITH Spider; USE Spider;
  2. PROCEDURE Drawing9 IS
  3. BEGIN 
  4. Start;
  5. Black;
  6. WHILE NOT AtWall LOOP
  7.      Step;
  8. END LOOP;
  9.  
  10. Turn;  Step;  Turn;  Red;
  11.  
  12. WHILE NOT AtWall LOOP
  13.      Step;
  14. END LOOP;
  15. Quit;
  16. END Drawing9;
  17.